home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 July / macformat52.iso / mac / Shareware Plus / Developers / YAAF v1.0 alpha 1 / (Sources) / Standard Controls / Text / XGStdText.cpp < prev   
Encoding:
C/C++ Source or Header  |  1997-04-24  |  1.8 KB  |  69 lines

  1. /*    XGStdText.cpp
  2.  *
  3.  *        This contains the declarations (rather empty, I may say) to
  4.  *    my standard text object. This is more a convenient placeholder when
  5.  *    I pass this thing around
  6.  */
  7.  
  8. /*  YAAF - Yet another application framework
  9.  *  Copyright (C) 1997 William Edward Woody and In Phase Consulting
  10.  *  
  11.  *  This library is free software; you can redistribute it
  12.  *  and/or modify it under the terms of the GNU Library
  13.  *  General Public License as published by the Free Software
  14.  *  Foundation; either version 2 of the License, or any
  15.  *  later version.
  16.  *  
  17.  *  This library is distributed in the hope that it will be
  18.  *  useful, but WITHOUT ANY WARRANTY; without even the implied
  19.  *  warranty of MERCHANTABIILITY or FITNESS FOR A PARTICULAR
  20.  *  PURPOSE. See the GNU Library General Public License for
  21.  *  more details.
  22.  *  
  23.  *  You should have received a copy of the GNU Library General
  24.  *  Public License along with this library; if not, write to the
  25.  *  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  26.  *  Boston, MA 02111-1307, USA.
  27.  *  
  28.  *  To contact the author, either e-mail me at
  29.  *  woody@alumni.caltech.edu, or write to us at
  30.  *  
  31.  *          William Edward Woody
  32.  *          In Phase Consulting
  33.  *          1545 Ard Eevin Avenue
  34.  *          Glendale, CA 91202
  35.  */
  36.  
  37. #include <XStdText.h>
  38.  
  39. /************************************************************************/
  40. /*                                                                        */
  41. /*    Constructors/Destructors                                            */
  42. /*                                                                        */
  43. /************************************************************************/
  44.  
  45. /*    XGStdText:XGStdText
  46.  *
  47.  *        punt
  48.  */
  49.  
  50. XGStdText::XGStdText(XGView *parent, XGArgStream &init, bool f) : 
  51.     XGView(parent,init,f)
  52. {
  53. }
  54.  
  55. XGStdText::XGStdText(XGView *parent, XGSViewInitRecord &init, bool f) : 
  56.     XGView(parent,init,f)
  57. {
  58. }
  59.  
  60. /*    XGStdText::~XGStdText
  61.  *
  62.  *        Punt
  63.  */
  64.  
  65. XGStdText::~XGStdText()
  66. {
  67. }
  68.  
  69.